golang.org/x/net/http2.Framer.wbuf (field)

32 uses

	golang.org/x/net/http2 (current package)
		frame.go#L291: 	wbuf []byte
		frame.go#L344: 	f.wbuf = append(f.wbuf[:0],
		frame.go#L359: 	length := len(f.wbuf) - frameHeaderLen
		frame.go#L363: 	_ = append(f.wbuf[:0],
		frame.go#L371: 	n, err := f.w.Write(f.wbuf)
		frame.go#L372: 	if err == nil && n != len(f.wbuf) {
		frame.go#L387: 	f.debugFramerBuf.Write(f.wbuf)
		frame.go#L396: func (f *Framer) writeByte(v byte)     { f.wbuf = append(f.wbuf, v) }
		frame.go#L397: func (f *Framer) writeBytes(v []byte)  { f.wbuf = append(f.wbuf, v...) }
		frame.go#L398: func (f *Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
		frame.go#L400: 	f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
		frame.go#L699: 		f.wbuf = append(f.wbuf, byte(len(pad)))
		frame.go#L701: 	f.wbuf = append(f.wbuf, data...)
		frame.go#L702: 	f.wbuf = append(f.wbuf, pad...)
		frame.go#L1129: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		frame.go#L1130: 	f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...)
		frame.go#L1273: 	f.wbuf = append(f.wbuf, headerBlockFragment...)
		frame.go#L1382: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		frame.go#L1383: 	f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...)